(C) 1996 AROS - The Amiga Replacement OS
NAME
#include <unistd.h>
ssize_t write()
SYNOPSIS
int fd
const void * buf
size_t count
FUNCTION
Write an amount of characters to the specified file descriptor.
INPUTS
fd
The file descriptor to write to
buf
Write these bytes into the file descriptor
count
Write that many bytes
RESULT
The number of characters written or -1 on error.
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
02.04.1997 ldp
Add BPTR casts
15.01.1997 digulla
Added functions for basic I/O (open, creat, close, read, write). Untested.